1import type { Metadata } from 'next' 2 3export const metadata: Metadata = { 4 title: 'Category', 5} 6 7export default function CategoryLayout({ children }: { children: React.ReactNode }) { 8 return children 9}